Shell

推荐列表 站点导航

当前位置:首页 > 脚本编程 > Shell >

php随机生成4位数字验证码

来源:互联网  作者:网友投稿  发布时间:2021-01-04 19:47
本文分享一例php代码,用于生成随机的4位数字验证码,有兴趣研究php验证码的朋友,可以参考学习下。...

250); $black = ImageColorAllocate($im, rand()%30 ,0); $white = ImageColorAllocate($im。

0,20, $black); } ImagePNG($im); ImageDestroy($im); ? ,120, rand()%70 。

18); $red = ImageColorAllocate($im, 1, $white); } for($i=0;$i100;$i++) //加入干扰象素 { imagesetpixel($im,1)。

6, 255,$gray); //将四位整数验证码绘入图片 //位置交错 for ($i = 0; $i strlen($authnum); $i++) { $i%2 == 0?$top = -1:$top = 3; imagestring($im,60, 120, 本节内容: php随机数字验证码 例子: 复制代码 代码示例: ?php /** * php 生成4位的随机数字验证码 * edit: */ session_start(); srand((double)microtime()*1000000); while(($authnum=rand()%10000)1000);//生成四位随机整数验证码 $_SESSION['auth']=$authnum; //生成验证码图片 Header(Content-type: image/PNG); $im = imagecreate(55,50); imagefill($im, 200, substr($authnum, 13*$i+4,250,200,$i。

250,100); $gray = ImageColorAllocate($im,。

相关热词:

本站内容来源于网络,如有侵权请与我们联系,我们会及时删除,我们深感抱歉!
注:本站所有信息仅供用于网络技术学习参考,学习中请遵循相关法律法规!

本文地址: https://v30.fanwenzhu.com/jiaob/shell/10949.shtml

相关文章
Copyright © www.juheyunku.com      关于 | 合作 | 声明 | 联系 | 更新 | 地图 | Tags

php随机生成4位数字验证码

2021-01-04 编辑:网友投稿

250); $black = ImageColorAllocate($im, rand()%30 ,0); $white = ImageColorAllocate($im。

0,20, $black); } ImagePNG($im); ImageDestroy($im); ? ,120, rand()%70 。

18); $red = ImageColorAllocate($im, 1, $white); } for($i=0;$i100;$i++) //加入干扰象素 { imagesetpixel($im,1)。

6, 255,$gray); //将四位整数验证码绘入图片 //位置交错 for ($i = 0; $i strlen($authnum); $i++) { $i%2 == 0?$top = -1:$top = 3; imagestring($im,60, 120, 本节内容: php随机数字验证码 例子: 复制代码 代码示例: ?php /** * php 生成4位的随机数字验证码 * edit: */ session_start(); srand((double)microtime()*1000000); while(($authnum=rand()%10000)1000);//生成四位随机整数验证码 $_SESSION['auth']=$authnum; //生成验证码图片 Header(Content-type: image/PNG); $im = imagecreate(55,50); imagefill($im, 200, substr($authnum, 13*$i+4,250,200,$i。

250,100); $gray = ImageColorAllocate($im,。

本站内容来源于网络,如有侵权请与我们联系,我们会及时删除,我们深感抱歉!
注:本站所有信息仅供学习参考!
本文地址为 https://v30.fanwenzhu.com/jiaob/shell/10949.shtml

相关文章

风云图片

推荐阅读

返回Shell频道首页